home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming in Microsoft Windows with C#
/
Programacion en Microsoft Windows con C#.iso
/
Codigo
/
Introducción a Windows Forms
/
RunFormBetter
/
RunFormBetter.cs
next >
Encoding:
Amiga (detected)
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-01-15
|
365 b
|
17 lines
//--------------------------------------------
// RunFormBetter.cs ⌐ 2001 by Charles Petzold
//--------------------------------------------
using System.Windows.Forms;
class RunFormBetter
{
public static void Main()
{
Form form = new Form();
form.Text = "My Very Own Form";
Application.Run(form);
}
}